home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gcc-head.mak < prev    next >
Text File  |  1997-08-05  |  10KB  |  295 lines

  1. #    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # makefile for Unix/gcc/X11 configuration.
  16. # Note: this makefile assumes you are using gcc in ANSI mode.
  17.  
  18. #****************************************************************#
  19. #   If you want to change options, DO NOT edit unix-gcc.mak      #
  20. #   or makefile.  Edit gcc-head.mak and run the tar_cat script.  #
  21. #****************************************************************#
  22.  
  23. # ------------------------------- Options ------------------------------- #
  24.  
  25. ####### The following are the only parts of the file you should need to edit.
  26.  
  27. # ------ Generic options ------ #
  28.  
  29. # Define the installation commands and target directories for
  30. # executables and files.  The commands are only relevant to `make install';
  31. # the directories also define the default search path for the
  32. # initialization files (gs_*.ps) and the fonts.
  33.  
  34. INSTALL = install -c
  35. INSTALL_PROGRAM = $(INSTALL) -m 755
  36. INSTALL_DATA = $(INSTALL) -m 644
  37.  
  38. prefix = /usr/local
  39. exec_prefix = $(prefix)
  40. bindir = $(exec_prefix)/bin
  41. scriptdir = $(bindir)
  42. mandir = $(prefix)/man
  43. man1ext = 1
  44. man1dir = $(mandir)/man$(man1ext)
  45. datadir = $(prefix)/share
  46. gsdir = $(datadir)/ghostscript
  47. gsdatadir = $(gsdir)/$(GS_DOT_VERSION)
  48.  
  49. docdir=$(gsdatadir)/doc
  50. exdir=$(gsdatadir)/examples
  51. GS_DOCDIR=$(docdir)
  52.  
  53. # Define the default directory/ies for the runtime
  54. # initialization and font files.  Separate multiple directories with a :.
  55.  
  56. GS_LIB_DEFAULT=$(gsdatadir):$(gsdir)/fonts
  57.  
  58. # Define whether or not searching for initialization files should always
  59. # look in the current directory first.  This leads to well-known security
  60. # and confusion problems, but users insist on it.
  61. # NOTE: this also affects searching for files named on the command line:
  62. # see the "File searching" section of use.txt for full details.
  63. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  64.  
  65. SEARCH_HERE_FIRST=1
  66.  
  67. # Define the name of the interpreter initialization file.
  68. # (There is no reason to change this.)
  69.  
  70. GS_INIT=gs_init.ps
  71.  
  72. # Choose generic configuration options.
  73.  
  74. # -DDEBUG
  75. #    includes debugging features (-Z switch) in the code.
  76. #      Code runs substantially slower even if no debugging switches
  77. #      are set.
  78. # -DNOPRIVATE
  79. #    makes private (static) procedures and variables public,
  80. #      so they are visible to the debugger and profiler.
  81. #      No execution time or space penalty.
  82.  
  83. #GENOPT=-DDEBUG
  84. GENOPT=
  85.  
  86. # Define the name of the executable file.
  87.  
  88. GS=gs
  89.  
  90. # Define the directory where the IJG JPEG library sources are stored,
  91. # and the major version of the library that is stored there.
  92. # You may need to change this if the IJG library version changes.
  93. # See jpeg.mak for more information.
  94.  
  95. JSRCDIR=jpeg-6a
  96. JVERSION=6
  97.  
  98. # Define the directory where the PNG library sources are stored,
  99. # and the version of the library that is stored there.
  100. # You may need to change this if the libpng version changes.
  101. # See libpng.mak for more information.
  102.  
  103. PSRCDIR=libpng
  104. PVERSION=96
  105.  
  106. # Choose whether to use a shared version of the PNG library, and if so,
  107. # what its name is.
  108. # See gs.mak and make.txt for more information.
  109.  
  110. SHARE_LIBPNG=0
  111. LIBPNG_NAME=png
  112.  
  113. # Define the directory where the zlib sources are stored.
  114. # See zlib.mak for more information.
  115.  
  116. ZSRCDIR=zlib
  117.  
  118. # Choose whether to use a shared version of the zlib library, and if so,
  119. # what its name is (usually libz, but sometimes libgz).
  120. # See gs.mak and make.txt for more information.
  121.  
  122. SHARE_ZLIB=0
  123. #ZLIB_NAME=gz
  124. ZLIB_NAME=z
  125.  
  126. # Define how to build the library archives.  (These are not used in any
  127. # standard configuration.)
  128.  
  129. AR=ar
  130. ARFLAGS=qc
  131. RANLIB=ranlib
  132.  
  133. # Define the configuration ID.  Read gs.mak carefully before changing this.
  134.  
  135. CONFIG=
  136.  
  137. # ------ Platform-specific options ------ #
  138.  
  139. # Define the name of the C compiler.
  140.  
  141. CC=gcc
  142.  
  143. # Define the name of the linker for the final link step.
  144. # Normally this is the same as the C compiler.
  145.  
  146. CCLD=$(CC)
  147.  
  148. # Define the default gcc flags.
  149. # To work around the gcc 2.7.x optimizer bug,
  150. # add -Dconst= and remove -Wcast-qual and -Wwrite-strings.
  151.  
  152. #GCFLAGS=-Wall -Wcast-qual -Wpointer-arith -Wstrict-prototypes -Wwrite-strings
  153. GCFLAGS=-Dconst= -Wall -Wpointer-arith -Wstrict-prototypes
  154.  
  155. # Define the other compilation flags.  Add at most one of the following:
  156. #    -DBSD4_2 for 4.2bsd systems.
  157. #    -DSYSV for System V or DG/UX.
  158. #     -DSYSV -D__SVR3 for SCO ODT, ISC Unix 2.2 or before,
  159. #       or any System III Unix, or System V release 3-or-older Unix.
  160. #    -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
  161. #    -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
  162. # XCFLAGS can be set from the command line.
  163. # We don't include -ansi, because this gets in the way of the platform-
  164. #   specific stuff that <math.h> typically needs; nevertheless, we expect
  165. #   gcc to accept ANSI-style function prototypes and function definitions.
  166. XCFLAGS=
  167.  
  168. CFLAGS=-O $(GCFLAGS) $(XCFLAGS)
  169.  
  170. # Define platform flags for ld.
  171. # SunOS 4.n may need -Bstatic.
  172. # XLDFLAGS can be set from the command line.
  173. XLDFLAGS=
  174.  
  175. LDFLAGS=$(XLDFLAGS)
  176.  
  177. # Define any extra libraries to link into the executable.
  178. # ISC Unix 2.2 wants -linet.
  179. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  180. # SVR4 may need -lnsl.
  181. # (Libraries required by individual drivers are handled automatically.)
  182.  
  183. EXTRALIBS=
  184.  
  185. # Define the include switch(es) for the X11 header files.
  186. # This can be null if handled in some other way (e.g., the files are
  187. # in /usr/include, or the directory is supplied by an environment variable);
  188. # in particular, SCO Xenix, Unix, and ODT just want
  189. #XINCLUDE=
  190. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  191. # not in $(XINCLUDE).
  192.  
  193. XINCLUDE=-I/usr/local/X/include
  194.  
  195. # Define the directory/ies and library names for the X11 library files.
  196. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
  197. # (dynamic libraries on SVR4) and should not include -L.
  198. # Both can be null if these files are in the default linker search path;
  199. # in particular, SCO Xenix, Unix, and ODT just want
  200. #XLIBDIRS=
  201. # Solaris and other SVR4 systems with dynamic linking probably want
  202. #XLIBDIRS=-L/usr/openwin/lib
  203. #XLIBDIR=/usr/openwin/lib
  204. # X11R6 (on any platform) may need
  205. #XLIBS=Xt SM ICE Xext X11
  206.  
  207. #XLIBDIRS=-L/usr/local/X/lib
  208. XLIBDIRS=-L/usr/X11/lib
  209. XLIBDIR=
  210. XLIBS=Xt Xext X11
  211.  
  212. # Define whether this platform has floating point hardware:
  213. #    FPU_TYPE=2 means floating point is faster than fixed point.
  214. # (This is the case on some RISCs with multiple instruction dispatch.)
  215. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  216. # than fixed point.
  217. #    FPU_TYPE=0 means that floating point may be considerably slower.
  218. #    FPU_TYPE=-1 means that floating point is always much slower than
  219. # fixed point.
  220.  
  221. FPU_TYPE=1
  222.  
  223. # ------ Devices and features ------ #
  224.  
  225. # Choose the language feature(s) to include.  See gs.mak for details.
  226.  
  227. FEATURE_DEVS=level2.dev pdf.dev pipe.dev
  228.  
  229. # Choose whether to compile the .ps initialization files into the executable.
  230. # See gs.mak for details.
  231.  
  232. COMPILE_INITS=0
  233.  
  234. # Choose whether to store band lists on files or in memory.
  235. # The choices are 'file' or 'memory'.
  236.  
  237. BAND_LIST_STORAGE=file
  238.  
  239. # Choose which compression method to use when storing band lists in memory.
  240. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  241. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  242.  
  243. BAND_LIST_COMPRESSOR=zlib
  244.  
  245. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  246. # See gs.mak and sfxfd.c for more details.
  247.  
  248. FILE_IMPLEMENTATION=stdio
  249.  
  250. # Choose the device(s) to include.  See devs.mak for details.
  251.  
  252. DEVICE_DEVS=x11.dev x11alpha.dev x11cmyk.dev x11gray2.dev x11mono.dev
  253. DEVICE_DEVS1=
  254. DEVICE_DEVS2=
  255. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  256. DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  257. DEVICE_DEVS5=uniprint.dev
  258. DEVICE_DEVS6=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  259. DEVICE_DEVS7=faxg3.dev faxg32d.dev faxg4.dev
  260. DEVICE_DEVS8=pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev pcxcmyk.dev
  261. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  262. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  263. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  264. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  265. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  266. DEVICE_DEVS14=jpeg.dev jpeggray.dev
  267. DEVICE_DEVS15=pdfwrite.dev pswrite.dev epswrite.dev pxlmono.dev pxlcolor.dev
  268.  
  269. # ---------------------------- End of options --------------------------- #
  270.  
  271. # Define the name of the partial makefile that specifies options --
  272. # used in dependencies.
  273.  
  274. MAKEFILE=gcc-head.mak
  275.  
  276. # Define the ANSI-to-K&R dependency.  (gcc accepts ANSI syntax.)
  277.  
  278. AK=
  279.  
  280. # Define the compilation rules and flags.
  281.  
  282. CCC=$(CC) $(CCFLAGS) -c
  283. CCAUX=$(CC)
  284. #We can't use -fomit-frame-pointer with -pg....
  285. #CCLEAF=$(CCC)
  286. CCLEAF=$(CCC) -fomit-frame-pointer
  287.  
  288. # --------------------------- Generic makefile ---------------------------- #
  289.  
  290. # The remainder of the makefile (unixhead.mak, gs.mak, devs.mak, unixtail.mak)
  291. # is generic.  tar_cat concatenates all these together.
  292.